home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / areuh.tar / areuh / equ / Makefile < prev    next >
Makefile  |  1990-10-10  |  618b  |  34 lines

  1. #
  2. # Ce Makefile fait un minimum de choses
  3. #
  4.  
  5. LIBDEST          = /usr/local/lib
  6.  
  7. EP          = hp71.ep hpil.ep
  8.  
  9. #
  10. # Les cibles :
  11. #    all : rien (ne fait que signaler l'absence eventuelle de hp71.ep)
  12. #    install : installe le programme dans l'aborescence
  13. #    clean : rien (compatibilite avec le Makefile general)
  14. #    clobber : rien (compatibilite avec le Makefile general)
  15. #    tags : rien (compatibilite avec le Makefile general)
  16. #
  17.  
  18. all:        $(EP)
  19.  
  20. depend:;    mkmf ROOT=$(ROOT)
  21.  
  22. install:    $(EP)
  23.         if [ "$(LIBDEST)" != . ] ; \
  24.         then \
  25.             (cd $(LIBDEST) ; rm -f $(EP)) ; \
  26.             cp $(EP) $(LIBDEST) ;\
  27.         fi ;
  28.  
  29. clean: ;
  30.  
  31. clobber: ;
  32.  
  33. tags: ;
  34.